Game xếp hình Tetris C#

1 using System;
2 using
System.Windows.Forms;
3
4 namespace
Tetris
5 {

6     ///
<summary>
7     ///
Descripción breve de Juego.
8     ///
</summary>
9     
public class Juego
10     {
11         
public static void Main()
12         {
13             
if ( !Utiles.ResolucionCorrecta(800, 600) )
14             {
15                 MessageBox.Show(
"Para ejecutar el juego, debe tener como mínimo una resolución de 800 x 600");
16             }
17             
else
18             {
19                 frmGUI f =
new frmGUI();
20                 f.ShowDialog();
21                 f.Dispose();
22             }
23
24         }
25     }
26 }



Game xếp hình Tetris C# 5.859 lượt xem

Gõ tìm kiếm nhanh...